Expand description
§zbus_xml
API to handle D-Bus introspection XML.
Thanks to the org.freedesktop.DBus.Introspectable
interface, objects may be introspected at
runtime, returning an XML string that describes the object.
This crate provides facilities to parse the XML data into more convenient
Rust structures. The XML string may be parsed to a tree with Node::from_reader
.
Status: Stable.
Structs§
- Annotations are generic key/value pairs of metadata.
- An argument
- An interface
- A method
- An introspection tree node (typically the root of the XML document).
- A property
- A signal
- A thin wrapper around
zvariant::parsed::Signature
.
Enums§
- A direction of an argument
- The error type for
zbus_names
. - The possible property access types
Type Aliases§
- Alias for a
Result
with the error typezbus_xml::Error
.